home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cre@te Online 2000 December
/
Cre@teOnline CD05.iso
/
MacSoft
/
XML ConsoleMax.sea
/
XML ConsoleMax
/
Required
/
ldapjdk.jar
/
netscape
/
ldap
/
ber
/
stream
/
BERInteger.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1999-04-13
|
755 b
|
23 lines
package netscape.ldap.ber.stream;
import java.io.IOException;
import java.io.InputStream;
public class BERInteger extends BERIntegral {
public BERInteger(int var1) {
super(var1);
}
public BERInteger(InputStream var1, int[] var2) throws IOException {
super(var1, var2);
}
public int getType() {
return 2;
}
public String toString() {
return "Integer {" + ((BERIntegral)this).getValue() + "}";
}
}